home *** CD-ROM | disk | FTP | other *** search
/ Delphi Magazine Collection 2001 / Delphi Magazine Collection 20001 (2001).iso / DISKS / Issue65 / system / TestGDIP.dpr < prev    next >
Encoding:
Text File  |  2000-11-25  |  229 b   |  15 lines

  1. program TestGDIP;
  2.  
  3. uses
  4.   Forms,
  5.   TestGdiPlus in 'TestGdiPlus.pas' {Form1},
  6.   GDIPlus in 'GDIPlus.pas';
  7.  
  8. {$R *.RES}
  9.  
  10. begin
  11.   Application.Initialize;
  12.   Application.CreateForm(TForm1, Form1);
  13.   Application.Run;
  14. end.
  15.